1bashThis script connects to a remote host using SSH with password authentication and disables strict host key checking.USER_HOST=${1?'user@host is required'} ssh -oStrictHostKeyChecking=no -oPreferredAuthentications=password $USER_HOSTsolutionsSSHpassword authentication